home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / advc11.zip / MISC.C < prev    next >
Text File  |  1987-02-06  |  140b  |  10 lines

  1. void delay(seconds)
  2.    unsigned int seconds;
  3. {
  4.    long dtime;
  5.  
  6.    dtime = time(NULL) + seconds;
  7.  
  8.    while (dtime != time(NULL));
  9. }
  10.